
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero .forside-bilde {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1; 
}

.hero .overlay h1 {
    color: white;
    font-size: 4rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}


.hero .overlay h2 {
    color: white;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.social-bar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    background-color:  rgba(197, 96, 38, 0.788);
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.social-icon {
    display: block;
    text-align: center;
    padding: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.social-icon:hover {
    background-color: #00bcd4;
    transform: scale(1.1);
}

.facebook img {
    background-color: #3b5998; 
}

.twitter img {
    background-color: #1da1f2; 
}

.instagram img {
    background-color: #e1306c; 
}


#om-oss {
    padding: 50px 20px;
    background-color: white;
    text-align: center;
}

#om-oss h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

#om-oss h3 {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #666;
}

#om-oss .logo img {
    width: 100px;
    margin-bottom: 20px;
}

#kontakt-oss {
    padding: 40px 20px;
    background-color: #ecf0f1;
    text-align: center;
}

#kontakt-oss h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

#kontakt-oss p {
    font-size: 1.1rem;
    color: #555;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .social-bar {
        left: 10px;
    }

    .social-icon img {
        width: 30px;
        height: 30px;
    }
}